var runtime.envs
10 uses
runtime (current package)
runtime.go#L51: var envs []string
runtime.go#L55: func syscall_runtime_envs() []string { return append([]string{}, envs...) }
runtime1.go#L91: envs = make([]string, n)
runtime1.go#L93: envs[i] = gostring(argv_index(argv, argc+1+i))
runtime1.go#L98: return envs
security_unix.go#L34: for i := 0; i < len(envs); i++ {
security_unix.go#L35: if hasPrefix(envs[i], "GOTRACEBACK=") {
security_unix.go#L37: envs[i] = "GOTRACEBACK=none"
security_unix.go#L41: envs = append(envs, "GOTRACEBACK=none")
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |